home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2004 July / APC0407D2.iso / workshop / onlineco / files / ImageMagick-6.0.1-Q16-windows-dll.exe / {app} / include / magick / segment.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-03-09  |  512 b   |  24 lines

  1. /*
  2.   ImageMagick Image Segment Methods.
  3. */
  4. #ifndef _MAGICK_SEGMENT_H
  5. #define _MAGICK_SEGMENT_H
  6.  
  7. #if defined(__cplusplus) || defined(c_plusplus)
  8. extern "C" {
  9. #endif
  10.  
  11. extern MagickExport MagickPixelPacket
  12.   GetImageDynamicThreshold(const Image *,const double,const double,
  13.     ExceptionInfo *);
  14.  
  15. extern MagickExport unsigned int
  16.   SegmentImage(Image *,const ColorspaceType,const unsigned int,const double,
  17.     const double);
  18.  
  19. #if defined(__cplusplus) || defined(c_plusplus)
  20. }
  21. #endif
  22.  
  23. #endif
  24.